home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / ppc-amigaos / include / powerpc / portsPPC.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  384b  |  25 lines

  1. #ifndef POWERPC_PORTSPPC_H
  2. #define POWERPC_PORTSPPC_H
  3.  
  4. #ifndef EXEC_PORTS_H
  5. #include <exec/ports.h>
  6. #endif
  7.  
  8. #ifndef EXEC_LISTS_H
  9. #include <exec/lists.h>
  10. #endif
  11.  
  12. #ifndef POWERPC_SEMAPHORESPPC_H
  13. #include <powerpc/semaphoresPPC.h>
  14. #endif
  15.  
  16. struct MsgPortPPC {
  17.     struct MsgPort mp_Port;
  18.     struct List mp_IntMsg;
  19.     struct SignalSemaphorePPC mp_Semaphore;
  20. };
  21.  
  22. #define NT_MSGPORTPPC 101
  23.  
  24. #endif
  25.